home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / ds.dir / 00207.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  420 b   |  27 lines

  1. on enterFrame
  2.   global gCurrentSprite
  3.   if length(field "name") > 15 then
  4.     set gCurrentSprite to 3
  5.     RunOff()
  6.   end if
  7.   if length(field "movie") > 15 then
  8.     set gCurrentSprite to 4
  9.     RunOff()
  10.   end if
  11. end
  12.  
  13. on mouseDown
  14.   global gCurrentSprite
  15.   if rollOver(3) then
  16.     set gCurrentSprite to 3
  17.   else
  18.     if rollOver(4) then
  19.       set gCurrentSprite to 4
  20.     end if
  21.   end if
  22. end
  23.  
  24. on exitFrame
  25.   go("Title")
  26. end
  27.